-
Notifications
You must be signed in to change notification settings - Fork 165
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore(libsinsp/test): use GTEST_SKIP to track disabled tests #2158
base: master
Are you sure you want to change the base?
chore(libsinsp/test): use GTEST_SKIP to track disabled tests #2158
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #2158 +/- ##
==========================================
+ Coverage 75.04% 75.20% +0.15%
==========================================
Files 255 259 +4
Lines 33589 33890 +301
Branches 5739 5801 +62
==========================================
+ Hits 25207 25487 +280
- Misses 8382 8403 +21
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
Perf diff from master - unit tests
Heap diff from master - unit tests
Heap diff from master - scap file
Benchmarks diff from master
|
/milestone 0.20.0 Left a suggestion/fix :) |
d687fa6
to
b343396
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/approve
LGTM label has been added. Git tree hash: 9e848f1b7055baf0cc8932454db421995de107c8
|
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: FedeDP, therealbobo The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Uh system deps builds on arm64 are failing with:
Care to give it a look so that we can merge this one? |
Signed-off-by: Roberto Scolaro <[email protected]>
b343396
to
cc3566c
Compare
New changes are detected. LGTM label has been removed. |
@@ -17,6 +17,8 @@ jobs: | |||
build-libs-linux: | |||
name: build-libs-linux-${{ matrix.arch }} 😁 (${{ matrix.name }}) | |||
runs-on: ${{ (matrix.arch == 'arm64' && 'github-arm64-2c-8gb') || 'ubuntu-22.04' }} | |||
container: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is another container
below: https://github.com/falcosecurity/libs/pull/2158/files#diff-b803fcb7f17ed9235f1e5cb1fcd2f5d3b2838429d4368ae4c57ce4436577f03fR38
cc3566c
to
546b202
Compare
@@ -17,6 +17,8 @@ jobs: | |||
build-libs-linux: | |||
name: build-libs-linux-${{ matrix.arch }} 😁 (${{ matrix.name }}) | |||
runs-on: ${{ (matrix.arch == 'arm64' && 'github-arm64-2c-8gb') || 'ubuntu-22.04' }} | |||
container: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
At this point, do we even need the container? I mean, we already run on ubuntu-22.04
on x86 and arm64.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd remove the container
directive.
Also, remember to add sudo
before install deps steps
d666250
to
120c24e
Compare
Signed-off-by: Roberto Scolaro <[email protected]>
120c24e
to
78bb159
Compare
What type of PR is this?
/kind cleanup
Any specific area of the project related to this PR?
/area libsinsp
/area tests
Does this PR require a change in the driver versions?
What this PR does / why we need it:
Instead of using an
ifdef
around test functions, we could useGTEST_SKIP
to avoid losing sight of disabled tests.Which issue(s) this PR fixes:
Fixes #
Special notes for your reviewer:
Does this PR introduce a user-facing change?: